home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 20 / Cream of the Crop 20 (Terry Blount) (1996).iso / bbs / fair407.zip / SAMPLE.BAT < prev    next >
DOS Batch File  |  1995-11-26  |  427b  |  24 lines

  1. REM : example .bat file for standlone COUNTY FAIR:
  2. @echo off
  3. cd\games\fair
  4. fair game 1
  5. cd\pb\node1
  6.  
  7. REM: you can pass variables as well:
  8. @echo off
  9. cd\games\fair
  10. fair game %1
  11. cd\pb\node%1
  12.  
  13. REM: if you use custom .CFG files ie: CONFIG1.CFG, CONFIG2.CFG do this:
  14. @echo off
  15. cd\games\fair
  16. fair game 1 custom
  17. cd\pb\node1
  18.  
  19. REM: put this in your nightly maintenance .bat file
  20. @echo off
  21. cd\games\fair
  22. fair maint
  23.  
  24.